home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / time / RCS / Time_Subtract.c,v < prev    next >
Text File  |  1991-10-22  |  2KB  |  113 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.06.27.17.23.37;  author ouster;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.19.14.33.02;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.10.22.14.49.53;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Use spriteTime.h instead of time.h.
  32. @
  33. text
  34. @/* 
  35.  * Time_Subtract.c --
  36.  *
  37.  *    Source code for the Time_Subtract library procedure.
  38.  *
  39.  * Copyright 1988 Regents of the University of California
  40.  * Permission to use, copy, modify, and distribute this
  41.  * software and its documentation for any purpose and without
  42.  * fee is hereby granted, provided that the above copyright
  43.  * notice appear in all copies.  The University of California
  44.  * makes no representations about the suitability of this
  45.  * software for any purpose.  It is provided "as is" without
  46.  * express or implied warranty.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: Time_Subtract.c,v 1.1 88/06/19 14:33:02 ouster Exp $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include <sprite.h>
  54. #include <spriteTime.h>
  55.  
  56.  
  57. /*
  58.  *----------------------------------------------------------------------
  59.  *
  60.  * Time_Subtract --
  61.  *
  62.  *      Subtracts one time value from another.
  63.  *
  64.  * Results:
  65.  *     The difference of the 2 times.
  66.  *
  67.  * Side effects:
  68.  *     None.
  69.  *
  70.  *----------------------------------------------------------------------
  71.  */
  72.  
  73. void
  74. Time_Subtract(time1, time2, resultPtr)
  75.     Time       time1;
  76.     Time       time2;
  77.     register Time *resultPtr;
  78. {
  79.     resultPtr->seconds      = time1.seconds      - time2.seconds;
  80.     resultPtr->microseconds = time1.microseconds - time2.microseconds;
  81.  
  82.     if (resultPtr->microseconds < 0) {
  83.     resultPtr->seconds    -= 1;
  84.     resultPtr->microseconds += ONE_SECOND;
  85.     }
  86. }
  87. @
  88.  
  89.  
  90. 1.2.1.1
  91. log
  92. @Initial branch for Sprite server.
  93. @
  94. text
  95. @d17 1
  96. a17 1
  97. static char rcsid[] = "$Header: /sprite/src/lib/c/time/RCS/Time_Subtract.c,v 1.2 88/06/27 17:23:37 ouster Exp $ SPRITE (Berkeley)";
  98. @
  99.  
  100.  
  101. 1.1
  102. log
  103. @Initial revision
  104. @
  105. text
  106. @d17 1
  107. a17 1
  108. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  109. d21 1
  110. a21 1
  111. #include "time.h"
  112. @
  113.